body {
    margin: 0;
    padding: 0;
    background-color: black !important;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --color-black: #000000;
    --color-dark-bg: #000000;
    --color-card-bg: #050505;
    --color-text-light: #F0F0F0;
    --color-rich-gold: #C4A000;
    --color-bright-gold: #FFD700;
    --color-secondary: #1a1a1a;
    --color-border: #111111;
}

.text-rich-gold {
    color: #FFD700;
}

.bg-rich-gold {
    background-color: #FFD700;
}

.border-rich-gold {
    border-color: #FFD700;
}

.navbar {
    background-color: rgb(0, 0, 0) !important;
    border-bottom: 4px solid var(--color-rich-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border-radius: 0px 0px 80px 80px;
    height: 75px;
    z-index: 1030;
}

.vsslogo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-top: 47px;
    border-bottom: 3px solid var(--color-rich-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.nav-link {
    margin: 20px !important;
    float: left;
    width: 100%;
    height: 50px;
    font-size: 20px !important;
    font-style: bold;
    color: white;
}

.site-title {
    width: auto;
    height: 100%;
    font-size: 35px;
    font-weight: bold;
    font-family: "Racing Sans One", sans-serif;
    color: white;
}

.navbar-collapse {
    width: 40%;
    height: 70px;
    font-family: serif;
    font-weight: bold;
    padding-top: 10px;
    /* background-color: pink; */
}

.navbar-nav a {
    color: white;
}

.navbar-nav {
    width: 100%;
    color: white;
}

.flee {
    height: 1000px;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border-radius: 0px 0px 80px 80px;
}

.imgup {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    border-radius: 0px 0px 80px 80px;
    opacity: 0.4;
}

.luxury-overlay {
    position: absolute;
    width: 90%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 10;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    color: var(--color-rich-gold);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 5px;
    line-height: 1.1;
}

.luxury-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-top: 0;
    color: #f0f0f0 !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.books {
    height: 250px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input::placeholder {
    color: white !important;
}

.input-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-top: 70px !important;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-input-wrapper input {
    padding-right: 35px;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 10px;
    color: gold;
    cursor: pointer;
    font-size: 0.8em;
    z-index: 2;
}

.date-input-wrapper .calendar-icon:hover {
    color: #f8c000;
}

.input-container input {
    width: 300px;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: gold;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.input-container input::placeholder {
    color: gold !important;
}

.input-container input:focus {
    border-bottom-color: #f8c000;
}

.below {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    font-size: 17px;
    align-items: center;
    color: #FFFFFF;
    z-index: 1;
    opacity: 0.4;
}

.search-button {
    width: 100%;
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid gold;
    margin-top: 20px;
}

.search-button:hover {
    background-color: var(--color-bright-gold);
    color: gold;
    transform: translateY(-1px);
    border: 2px solid white;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background-color: var(--color-card-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
    max-width: 24rem;
    width: 100%;
    text-align: center;
    border: 2px solid var(--color-bright-gold);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-bright-gold) !important;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.modal-message {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.modal-button {
    background-color: var(--color-rich-gold);
    color: var(--color-black);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: opacity 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.flex-display {
    display: flex !important;
}

.hidden-display {
    display: none;
}

/* Target the section wrapper */

/* Apply the gold gradient background to the new section class */
/* Apply the gold gradient background to the new section class */
.fleet-listing-section {
    margin-top: 2rem;
    padding: 3rem 1rem;

    /* CRITICAL: Ensure visibility and size */
    min-height: 500px;

    /* Base Color (Fallback): Deep Charcoal */
    background-color: #0d0d0d;

    /* The Diagonal Split Gradient (Gold and Black) */
    background-image: linear-gradient(135deg,
            /* Angle for the diagonal split (top-right to bottom-left) */
            #0d0d0d 0%,
            /* Pure Dark starts */
            #0d0d0d 50%,
            /* Dark section fills 50% */
            #BF953F 50.1%,
            /* Sharp transition to Gold */
            #FFD700 80%,
            /* Bright Gold fill */
            #BF953F 100%
            /* Gold ends */
        );

    background-repeat: no-repeat;
    background-size: 100% 100%;

    /* Luxurious Glow (No Border) */
    box-shadow: 0 0 40px rgba(191, 149, 63, 0.4);
    border-radius: 4px;
}

/* Styling for the section title (for visibility) */
.fleet-listing-section .listing-title {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 0 10px #FFD700;
}

/* .listing-title {
           font-size: 1.5rem;
           font-weight: 800;
           margin-bottom: 2rem;
           font-style: italic;
           color: white;
           padding-left: 200px;
           padding-bottom: 1rem;
           border-radius: 5px;
           border-bottom: 2px solid var(--color-rich-gold);
       } */

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

}

.car-listings-wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    /* background-color: pink; */
}

.car-card {
    background-color: var(--color-card-bg);
    padding: 2rem;

    /* background-color:#332D1C; */
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.3s ease;

}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: var(--color-bright-gold);
}

.car-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    padding-top: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-rich-gold);
}

.car-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-bright-gold);
    font-family: 'Playfair Display', serif;
}

.car-type {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 1rem;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid var(--color-rich-gold);
    border-bottom: 1px solid var(--color-rich-gold);
}

.car-spec-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.spec-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-bright-gold);
}

.price-cta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: auto;
}

.price-large {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text-light);
}

.price-small {
    font-size: 0.9rem;
    color: #999999;
}

.book-button {
    background-color: var(--color-black);
    color: var(--color-bright-gold);
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    /* width: 100%; */
    border-radius: 0.5rem;
    border: 2px solid var(--color-rich-gold);
    /* --- MODIFIED TRANSITION BELOW --- */
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.3s ease;
    /* Increased duration for a slower effect */
    cursor: pointer;
    white-space: nowrap;
}

.book-button:hover:not(:disabled) {
    background-color: var(--color-rich-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.book-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #777;
    border-color: #555;
    background-color: #222;

}

footer {
    width: 100%;
    height: 600px;
    float: left;
    margin-top: 100px;
}

.fit {
    height: 100px;
    display: flex;
    background-image: linear-gradient(to right,
            #0D0D0D 0%,
            #332D1C 15%,
            #A87B2E 50%,
            #332D1C 85%,
            #0D0D0D 100%);
    box-shadow: 0 0 15px rgba(168, 123, 46, 0.4);
}

.footer-container {
    width: 90%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Varela Round', sans-serif;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 20px !important;
    flex: 1;
    min-width: 250px;
}

.item-icon {
    width: 20px;
    height: auto;
    margin-right: 15px;
    margin-top: 10px !important;
    transform: translateY(3px);
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-title {
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.item-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    color: #E0E0E0;
}

.page-container {
    width: 100%;
    padding: 40px 0;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.column {
    padding: 15px;
}

.about-us-column {
    flex: 2;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.info-columns {
    flex: 1;
    color: white;
    font-family: 'Days One', sans-serif;
    font-size: 13px;
}

.about-title {
    font-family: sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.about-text {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
}

/* --- CART SIDEBAR STYLES --- */
.cart-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 1.5rem;
    color: var(--color-bright-gold) !important;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.cart-icon-button:hover {
    color: white !important;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #A87B2E;
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 6px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
    border: 1px solid var(--color-bright-gold);
}

.cart-sidebar {
    /* POSITIONING & APPEARANCE (Keep these) */
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background-color: var(--color-card-bg);
    box-shadow: -10px 0 30px rgba(255, 215, 0, 0.3);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-rich-gold);

    /* ANIMATION SETUP (The key part) */
    /* Initial state: Pushed off-screen to the right by 100% of its own width */
    transform: translateX(100%);
    /* Enable smooth animation for the transform */
    transition: transform 0.4s ease-in-out;

    /* INTERACTION GUARDRAIL (Recommended) */
    /* Block interaction when closed to prevent accidental clicks */
    pointer-events: none;
}

.cart-sidebar.is-open {
    /* Final state: Moved fully into view */
    transform: translateX(0);

    /* Allow interaction when open */
    pointer-events: auto;
}

.cart-header {
    padding: 1rem;
    border-bottom: 2px solid var(--color-rich-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
}

.close-cart-button {
    background: none;
    border: none;
    color: var(--color-rich-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-cart-button:hover {
    color: white;
}

.cart-items {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;

}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-bright-gold);
}

.cart-item-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
    color: var(--color-text-light);
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-bright-gold);
}

.cart-item-price {
    font-size: 0.9rem;
    color: #f0f0f0;
}

.remove-item-button {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 1rem;
}

.remove-item-button:hover {
    color: white;
}

.empty-cart-message {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}

.cart-footer {
    padding: 1rem;
    border-top: 2px solid var(--color-rich-gold);
    background-color: #0d0d0d;

}

.cart-total-info {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.total-label {
    font-weight: 500;
}

.total-value {
    font-weight: 700;
    color: var(--color-bright-gold);
}

.checkout-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-bright-gold);
    color: var(--color-black);
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-button:hover:not(:disabled) {
    background-color: #ffffff;
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === NEW FLOATING CART BUTTON STYLES === */
.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-card-bg);
    border: 2px solid var(--color-bright-gold);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 1050;
    /* Above everything but maybe the sidebar itself */
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: scale(0.9);
    visibility: hidden;
}

.floating-cart-btn.show {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.floating-cart-btn i {
    color: var(--color-bright-gold);
    font-size: 1.8rem;
}



.luxury-title {
    font-family: 'Playfair Display', serif;
    /* Elegant font from your linked sources */
    font-weight: 900;
    /* Extra bold for prominence */
    font-size: 5rem;
    /* Large text size for impact */
    margin-bottom: 0.5rem;
    color: var(--color-rich-gold);
    /* Rich gold color */
    /* Black and gold shadow for depth and glow: */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 5px;
    /* Premium spacing */
    line-height: 1.1;

}

.luxury-subtitle {
    font-family: 'Montserrat', sans-serif;
    /* Clean, modern secondary font */
    font-weight: 400;
    font-size: 1.5rem;
    margin-top: 0;
    color: #f0f0f0 !important;
    /* Off-white for contrast */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

/* END NEW FLOATING CART BUTTON STYLES */





.copyright-text {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    font-weight: 300;
}

/* * RESPONSIVENESS */



.foot4 {
    width: 100%;
    height: 50px;
    float: left;

    background-color: black;
}

.foot5 {
    width: 20%;
    height: 20px;
    float: left;
    background-color: black;
    margin-left: 10%;
    color: white;
    font-family: serif;
    margin-top: 10px;
}

.privacy {
    width: 40%;
    height: 30px;
    float: right;
    color: white;
    /* background-color: pink; */
    margin-top: 10px;
    margin-right: 5%;
    padding-left: 15%;
    font-family: serif;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: black;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    border-bottom: 4px solid rgba(255, 215, 0, 0.1);
    padding: 10px 0;
    border-radius: 5px;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 80s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    padding: 0 20px;
}

/* Custom styles for the flag icons */
.marquee-text .fi {
    height: 1.2em;
    width: 1.3em;
    margin: 0 10px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

/* New CSS rule for the vertical Spanish flag */
.fi-es.vertical {
    transform: rotate(90deg);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#mynavbar.navbar-collapse {
    /* On mobile, usually you want this to take up full width/stack vertically */
    flex-grow: 1;
}



















.input-container {
    /* Change the row layout to a column for better stacking */
    flex-direction: column !important;
    /* Reduce the gap between stacked elements */
    gap: 15px;
}

.input-container input {
    /* Make the inputs take up most of the available width */
    width: 100%;
    /* The inputs will now be contained by their parent's width */
    max-width: 300px;
    /* Optional: cap maximum size */
}

.car-grid {
    /* Change from 3 columns to 1 column */
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* Slightly reduce gap */
}

/* Ensure no padding/margins on inner wrappers push content out */
.car-listings-wrapper {
    padding-left: 10px;
    padding-right: 10px;
}

.cart-icon-button {
    display: none !important;
}

.books {
    /* background-color: pink; */
    height: 450px;
}

.search-button .below {
    margin-top: 30px;
}

.below {
    margin-top: 50px;
}

.fleet-listing-section {
    margin-top: 70px !important;
}

footer {
    height: auto;
    /* background-color: purple !important; */

}

.fit {
    background-color: lightcoral !important;
    height: 300px;

}




.column {
    width: 100%;
    /* Makes each column take full width of the wrapper */
    padding: 10px 0;
    text-align: center;
    margin-bottom: 15px;
}

.column h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* .foot4 {
        background-color: chartreuse;
        height: 100px;
     } */

.foot4 {
    width: 100%;
    /* height: 200px; */
    display: flex;
    flex-direction: row;
    /* background-color: blue; */
    font-size: 11px;
    justify-content: space-between;
    /* align-items: center; */
}

.foot5 {
    /* background-color: red; */
    width: 40%;
}

/* .privacy {
        background-color: gray;
    } */
.cookie {

    /* background-color: orange; */
    width: 100%;
    display: flex;
    flex-direction: row;
    font-size: 10px;

}

.marquee-container {
    height: 50px;
}

.marquee-text {
    font-size: 15px;
}

.floating-cart-btn {
    position: fixed;
    bottom: 150px;
}




/* --- RESPONSIVENESS (Small Screens: max-width: 567px) --- */






.books {
    height: 250px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input::placeholder {
    color: white !important;
}

.input-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-top: 70px !important;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-input-wrapper input {
    padding-right: 35px;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 10px;
    color: gold;
    cursor: pointer;
    font-size: 0.8em;
    z-index: 2;
}

.date-input-wrapper .calendar-icon:hover {
    color: #f8c000;
}

.input-container input {
    width: 300px;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: gold;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.input-container input::placeholder {
    color: gold !important;
}

.input-container input:focus {
    border-bottom-color: #f8c000;
}

.below {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    font-size: 17px;
    align-items: center;
    color: #FFFFFF;
    z-index: 1;
    opacity: 0.4;
}

.search-button {
    width: 100%;
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid gold;
    margin-top: 20px;
}

.search-button:hover {
    background-color: var(--color-bright-gold);
    color: gold;
    transform: translateY(-1px);
    border: 2px solid white;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background-color: var(--color-card-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
    max-width: 24rem;
    width: 100%;
    text-align: center;
    border: 2px solid var(--color-bright-gold);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-bright-gold) !important;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.modal-message {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.modal-button {
    background-color: var(--color-rich-gold);
    color: var(--color-black);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: opacity 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.flex-display {
    display: flex !important;
}

.hidden-display {
    display: none;
}

/* Target the section wrapper */

/* Apply the gold gradient background to the new section class */
/* Apply the gold gradient background to the new section class */
.fleet-listing-section {
    margin-top: 2rem;
    padding: 3rem 1rem;

    /* CRITICAL: Ensure visibility and size */
    min-height: 500px;

    /* Base Color (Fallback): Deep Charcoal */
    background-color: #0d0d0d;

    /* The Diagonal Split Gradient (Gold and Black) */
    background-image: linear-gradient(135deg,
            /* Angle for the diagonal split (top-right to bottom-left) */
            #0d0d0d 0%,
            /* Pure Dark starts */
            #0d0d0d 50%,
            /* Dark section fills 50% */
            #BF953F 50.1%,
            /* Sharp transition to Gold */
            #FFD700 80%,
            /* Bright Gold fill */
            #BF953F 100%
            /* Gold ends */
        );

    background-repeat: no-repeat;
    background-size: 100% 100%;

    /* Luxurious Glow (No Border) */
    box-shadow: 0 0 40px rgba(191, 149, 63, 0.4);
    border-radius: 4px;
}

/* Styling for the section title (for visibility) */
.fleet-listing-section .listing-title {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 0 10px #FFD700;
}

/* .listing-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            font-style: italic;
            color: white;
            padding-left: 200px;
            padding-bottom: 1rem;
            border-radius: 5px;
            border-bottom: 2px solid var(--color-rich-gold);
        } */

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

}

.car-listings-wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    /* background-color: pink; */
}

.car-card {
    background-color: var(--color-card-bg);
    padding: 2rem;

    /* background-color:#332D1C; */
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.3s ease;

}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: var(--color-bright-gold);
}

.car-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    padding-top: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-rich-gold);
}

.car-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-bright-gold);
    font-family: 'Playfair Display', serif;
}

.car-type {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 1rem;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid var(--color-rich-gold);
    border-bottom: 1px solid var(--color-rich-gold);
}

.car-spec-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.spec-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-bright-gold);
}

.price-cta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: auto;
}

.price-large {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text-light);
}

.price-small {
    font-size: 0.9rem;
    color: #999999;
}

.book-button {
    background-color: var(--color-black);
    color: var(--color-bright-gold);
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    /* width: 100%; */
    border-radius: 0.5rem;
    border: 2px solid var(--color-rich-gold);
    /* --- MODIFIED TRANSITION BELOW --- */
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.3s ease;
    /* Increased duration for a slower effect */
    cursor: pointer;
    white-space: nowrap;
}

.book-button:hover:not(:disabled) {
    background-color: var(--color-rich-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.book-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #777;
    border-color: #555;
    background-color: #222;

}

footer {
    width: 100%;
    height: 600px;
    float: left;
    margin-top: 100px;
}

.fit {
    height: 100px;
    display: flex;
    background-image: linear-gradient(to right,
            #0D0D0D 0%,
            #332D1C 15%,
            #A87B2E 50%,
            #332D1C 85%,
            #0D0D0D 100%);
    box-shadow: 0 0 15px rgba(168, 123, 46, 0.4);
}

.footer-container {
    width: 90%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Varela Round', sans-serif;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 20px !important;
    flex: 1;
    min-width: 250px;
}

.item-icon {
    width: 20px;
    height: auto;
    margin-right: 15px;
    margin-top: 10px !important;
    transform: translateY(3px);
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-title {
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.item-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    color: #E0E0E0;
}

.page-container {
    width: 100%;
    padding: 40px 0;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.column {
    padding: 15px;
}

.about-us-column {
    flex: 2;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.info-columns {
    flex: 1;
    color: white;
    font-family: 'Days One', sans-serif;
    font-size: 13px;
}

.about-title {
    font-family: sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.about-text {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #C0C0C0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-text .line {
    display: block;
}

.sub-heading {
    font-family: sans-serif;
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding-bottom: 5px;
}

.info-columns ul {
    list-style: none;
    padding: 0;
}

.info-columns ul li {
    margin-bottom: 5px;
    list-style: disc;
}

/* --- CART SIDEBAR STYLES --- */
.cart-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 1.5rem;
    color: var(--color-bright-gold) !important;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.cart-icon-button:hover {
    color: white !important;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #A87B2E;
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 6px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
    border: 1px solid var(--color-bright-gold);
}

.cart-sidebar {
    /* POSITIONING & APPEARANCE (Keep these) */
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background-color: var(--color-card-bg);
    box-shadow: -10px 0 30px rgba(255, 215, 0, 0.3);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-rich-gold);

    /* ANIMATION SETUP (The key part) */
    /* Initial state: Pushed off-screen to the right by 100% of its own width */
    transform: translateX(100%);
    /* Enable smooth animation for the transform */
    transition: transform 0.4s ease-in-out;

    /* INTERACTION GUARDRAIL (Recommended) */
    /* Block interaction when closed to prevent accidental clicks */
    pointer-events: none;
}

.cart-sidebar.is-open {
    /* Final state: Moved fully into view */
    transform: translateX(0);

    /* Allow interaction when open */
    pointer-events: auto;
}

.cart-header {
    padding: 1rem;
    border-bottom: 2px solid var(--color-rich-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
}

.close-cart-button {
    background: none;
    border: none;
    color: var(--color-rich-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-cart-button:hover {
    color: white;
}

.cart-items {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;

}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-bright-gold);
}

.cart-item-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
    color: var(--color-text-light);
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-bright-gold);
}

.cart-item-price {
    font-size: 0.9rem;
    color: #f0f0f0;
}

.remove-item-button {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 1rem;
}

.remove-item-button:hover {
    color: white;
}

.empty-cart-message {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}

.cart-footer {
    padding: 1rem;
    border-top: 2px solid var(--color-rich-gold);
    background-color: #0d0d0d;

}

.cart-total-info {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.total-label {
    font-weight: 500;
}

.total-value {
    font-weight: 700;
    color: var(--color-bright-gold);
}

.checkout-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-bright-gold);
    color: var(--color-black);
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-button:hover:not(:disabled) {
    background-color: #ffffff;
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === NEW FLOATING CART BUTTON STYLES === */
.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-card-bg);
    border: 2px solid var(--color-bright-gold);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 1050;
    /* Above everything but maybe the sidebar itself */
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: scale(0.9);
    visibility: hidden;
}

.floating-cart-btn.show {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.floating-cart-btn i {
    color: var(--color-bright-gold);
    font-size: 1.8rem;
}

/* END NEW FLOATING CART BUTTON STYLES */

.foot4 {
    width: 100%;
    height: 50px;
    float: left;

    background-color: black;
}

.foot5 {
    width: 20%;
    height: 20px;
    float: left;
    background-color: black;
    margin-left: 10%;
    color: white;
    font-family: serif;
    margin-top: 10px;
}

.privacy {
    width: 40%;
    height: 30px;
    float: right;
    color: white;
    /* background-color: pink; */
    margin-top: 10px;
    margin-right: 5%;
    padding-left: 15%;
    font-family: serif;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: black;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    border-bottom: 4px solid rgba(255, 215, 0, 0.1);
    padding: 10px 0;
    border-radius: 5px;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 80s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    padding: 0 20px;
}

/* Custom styles for the flag icons */
.marquee-text .fi {
    height: 1.2em;
    width: 1.3em;
    margin: 0 10px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

/* New CSS rule for the vertical Spanish flag */
.fi-es.vertical {
    transform: rotate(90deg);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#mynavbar.navbar-collapse {
    /* On mobile, usually you want this to take up full width/stack vertically */
    flex-grow: 1;
}

/* ---------------------------------------------------------------------------------- */
/* --- NEW MEDIA QUERY: MAX-WIDTH 768px (TABLETS/SMALL DESKTOPS) --- */
/* ---------------------------------------------------------------------------------- */


:root {
    --color-black: #000000;
    --color-dark-bg: #000000;
    --color-card-bg: #050505;
    --color-text-light: #F0F0F0;
    --color-rich-gold: #C4A000;
    --color-bright-gold: #FFD700;
    --color-secondary: #1a1a1a;
    --color-border: #111111;
}

.text-rich-gold {
    color: #FFD700;
}

.bg-rich-gold {
    background-color: #FFD700;
}

.border-rich-gold {
    border-color: #FFD700;
}

.navbar {
    background-color: rgb(0, 0, 0) !important;
    border-bottom: 4px solid var(--color-rich-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border-radius: 0px 0px 80px 80px;
    height: 75px;
    z-index: 1030;
}

.vsslogo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-top: 47px;
    border-bottom: 3px solid var(--color-rich-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.nav-link {
    margin: 20px !important;
    float: left;
    width: 100%;
    height: 50px;
    font-size: 20px !important;
    font-style: bold;
    color: white;
}

.site-title {
    width: auto;
    height: 100%;
    font-size: 35px;
    font-weight: bold;
    font-family: "Racing Sans One", sans-serif;
    color: white;
}

.navbar-collapse {
    width: 40%;
    height: 70px;
    font-family: serif;
    font-weight: bold;
    padding-top: 10px;
}

.navbar-nav a {
    color: white;
}

.navbar-nav {
    width: 100%;
    color: white;
}

.flee {
    height: 1000px;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border-radius: 0px 0px 80px 80px;
}

.imgup {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    border-radius: 0px 0px 80px 80px;
    opacity: 0.4;
}

.luxury-overlay {
    position: absolute;
    width: 90%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 10;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    color: var(--color-rich-gold);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 5px;
    line-height: 1.1;
}

.luxury-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-top: 0;
    color: #f0f0f0 !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.books {
    height: 250px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input::placeholder {
    color: white !important;
}

.input-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 25px;
    margin-top: 70px !important;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-input-wrapper input {
    padding-right: 35px;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 10px;
    color: gold;
    cursor: pointer;
    font-size: 0.8em;
    z-index: 2;
}

.date-input-wrapper .calendar-icon:hover {
    color: #f8c000;
}

.input-container input {
    width: 300px;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: gold;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.input-container input::placeholder {
    color: gold !important;
}

.input-container input:focus {
    border-bottom-color: #f8c000;
}

.below {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    font-size: 17px;
    align-items: center;
    color: #FFFFFF;
    z-index: 1;
    opacity: 0.4;
}

.search-button {
    width: 100%;
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid gold;
    margin-top: 20px;
}

.search-button:hover {
    background-color: var(--color-bright-gold);
    color: gold;
    transform: translateY(-1px);
    border: 2px solid white;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background-color: var(--color-card-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
    max-width: 24rem;
    width: 100%;
    text-align: center;
    border: 2px solid var(--color-bright-gold);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-bright-gold) !important;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.modal-message {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.modal-button {
    background-color: var(--color-rich-gold);
    color: var(--color-black);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: opacity 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.flex-display {
    display: flex !important;
}

.hidden-display {
    display: none;
}

/* Target the section wrapper */

/* Apply the gold gradient background to the new section class */
/* Apply the gold gradient background to the new section class */
.fleet-listing-section {
    margin-top: 2rem;
    padding: 3rem 1rem;

    /* CRITICAL: Ensure visibility and size */
    min-height: 500px;

    /* Base Color (Fallback): Deep Charcoal */
    background-color: #0d0d0d;

    /* The Diagonal Split Gradient (Gold and Black) */
    background-image: linear-gradient(135deg,
            /* Angle for the diagonal split (top-right to bottom-left) */
            #0d0d0d 0%,
            /* Pure Dark starts */
            #0d0d0d 50%,
            /* Dark section fills 50% */
            #BF953F 50.1%,
            /* Sharp transition to Gold */
            #FFD700 80%,
            /* Bright Gold fill */
            #BF953F 100%
            /* Gold ends */
        );

    background-repeat: no-repeat;
    background-size: 100% 100%;

    /* Luxurious Glow (No Border) */
    box-shadow: 0 0 40px rgba(191, 149, 63, 0.4);
    border-radius: 4px;
}

/* Styling for the section title (for visibility) */
.fleet-listing-section .listing-title {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 0 10px #FFD700;
}

/* .listing-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            font-style: italic;
            color: white;
            padding-left: 200px;
            padding-bottom: 1rem;
            border-radius: 5px;
            border-bottom: 2px solid var(--color-rich-gold);
        } */

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

}

.car-listings-wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    /* background-color: pink; */
}

.car-card {
    background-color: var(--color-card-bg);
    padding: 2rem;

    /* background-color:#332D1C; */
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.3s ease;

}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: var(--color-bright-gold);
}

.car-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    padding-top: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-rich-gold);
}

.car-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-bright-gold);
    font-family: 'Playfair Display', serif;
}

.car-type {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 1rem;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid var(--color-rich-gold);
    border-bottom: 1px solid var(--color-rich-gold);
}

.car-spec-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.spec-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-bright-gold);
}

.price-cta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: auto;
}

.price-large {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text-light);
}

.price-small {
    font-size: 0.9rem;
    color: #999999;
}

.book-button {
    background-color: var(--color-black);
    color: var(--color-bright-gold);
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    /* width: 100%; */
    border-radius: 0.5rem;
    border: 2px solid var(--color-rich-gold);
    /* --- MODIFIED TRANSITION BELOW --- */
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.3s ease;
    /* Increased duration for a slower effect */
    cursor: pointer;
    white-space: nowrap;
}

.book-button:hover:not(:disabled) {
    background-color: var(--color-rich-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.book-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #777;
    border-color: #555;
    background-color: #222;

}

footer {
    width: 100%;
    height: 600px;
    float: left;
    margin-top: 100px;
}

.fit {
    height: 100px;
    display: flex;
    background-image: linear-gradient(to right,
            #0D0D0D 0%,
            #332D1C 15%,
            #A87B2E 50%,
            #332D1C 85%,
            #0D0D0D 100%);
    box-shadow: 0 0 15px rgba(168, 123, 46, 0.4);
}

.footer-container {
    width: 90%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Varela Round', sans-serif;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 20px !important;
    flex: 1;
    min-width: 250px;
}

.item-icon {
    width: 20px;
    height: auto;
    margin-right: 15px;
    margin-top: 10px !important;
    transform: translateY(3px);
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-title {
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.item-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    color: #E0E0E0;
}

.page-container {
    width: 100%;
    padding: 40px 0;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.column {
    padding: 15px;
}



.info-columns {
    flex: 1;
    color: white;
    font-family: 'Days One', sans-serif;
    font-size: 13px;
}

.about-title {
    font-family: sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.about-text {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #C0C0C0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-text .line {
    display: block;
}

.sub-heading {
    font-family: sans-serif;
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding-bottom: 5px;
}

.info-columns ul {
    list-style: none;
    padding: 0;
}

.info-columns ul li {
    margin-bottom: 5px;
    list-style: disc;
}

/* --- CART SIDEBAR STYLES --- */
.cart-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 1.5rem;
    color: var(--color-bright-gold) !important;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.cart-icon-button:hover {
    color: white !important;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #A87B2E;
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 6px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
    border: 1px solid var(--color-bright-gold);
}

.cart-sidebar {
    /* POSITIONING & APPEARANCE (Keep these) */
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background-color: var(--color-card-bg);
    box-shadow: -10px 0 30px rgba(255, 215, 0, 0.3);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-rich-gold);

    /* ANIMATION SETUP (The key part) */
    /* Initial state: Pushed off-screen to the right by 100% of its own width */
    transform: translateX(100%);
    /* Enable smooth animation for the transform */
    transition: transform 0.4s ease-in-out;

    /* INTERACTION GUARDRAIL (Recommended) */
    /* Block interaction when closed to prevent accidental clicks */
    pointer-events: none;
}

.cart-sidebar.is-open {
    /* Final state: Moved fully into view */
    transform: translateX(0);

    /* Allow interaction when open */
    pointer-events: auto;
}

.cart-header {
    padding: 1rem;
    border-bottom: 2px solid var(--color-rich-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
}

.close-cart-button {
    background: none;
    border: none;
    color: var(--color-rich-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-cart-button:hover {
    color: white;
}

.cart-items {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;

}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-bright-gold);
}

.cart-item-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
    color: var(--color-text-light);
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-bright-gold);
}

.cart-item-price {
    font-size: 0.9rem;
    color: #f0f0f0;
}

.remove-item-button {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 1rem;
}

.remove-item-button:hover {
    color: white;
}

.empty-cart-message {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}

.cart-footer {
    padding: 1rem;
    border-top: 2px solid var(--color-rich-gold);
    background-color: #0d0d0d;

}

.cart-total-info {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.total-label {
    font-weight: 500;
}

.total-value {
    font-weight: 700;
    color: var(--color-bright-gold);
}

.checkout-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-bright-gold);
    color: var(--color-black);
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-button:hover:not(:disabled) {
    background-color: #ffffff;
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === NEW FLOATING CART BUTTON STYLES === */
.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-card-bg);
    border: 2px solid var(--color-bright-gold);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 1050;
    /* Above everything but maybe the sidebar itself */
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: scale(0.9);
    visibility: hidden;
}

.floating-cart-btn.show {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.floating-cart-btn i {
    color: var(--color-bright-gold);
    font-size: 1.8rem;
}

/* END NEW FLOATING CART BUTTON STYLES */

.foot4 {
    width: 100%;
    height: 50px;
    float: left;

    background-color: black;
}

.foot5 {
    width: 20%;
    height: 20px;
    float: left;
    background-color: black;
    margin-left: 10%;
    color: white;
    font-family: serif;
    margin-top: 10px;
}

.privacy {
    width: 40%;
    height: 30px;
    float: right;
    color: white;
    /* background-color: pink; */
    margin-top: 10px;
    margin-right: 5%;
    padding-left: 15%;
    font-family: serif;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: black;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    border-bottom: 4px solid rgba(255, 215, 0, 0.1);
    padding: 10px 0;
    border-radius: 5px;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 80s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    padding: 0 20px;
}

/* Custom styles for the flag icons */
.marquee-text .fi {
    height: 1.2em;
    width: 1.3em;
    margin: 0 10px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

/* New CSS rule for the vertical Spanish flag */
.fi-es.vertical {
    transform: rotate(90deg);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#mynavbar.navbar-collapse {
    /* On mobile, usually you want this to take up full width/stack vertically */
    flex-grow: 1;
}



@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
        align-items: center;
        /* Center items in the stack */
    }

    .footer-item {
        margin-bottom: 25px;
        width: 100%;
        max-width: 400px;
        /* Constrain width on mobile */
    }
}


@media (max-width: 768px) {

    /* --- Navbar Adjustments --- */
    .navbar {
        height: 70px;
        border-radius: 0px 0px 50px 50px;
    }

    .vsslogo {
        width: 80px;
        height: 80px;
        margin-top: 0;
        /* Resetting float margin to use flex positioning */
        position: relative;
        top: 5px;
        /* Adjust vertical position */
    }

    .site-title {
        font-size: 30px;
    }

    /* --- Hero Section Adjustments --- */
    .flee {
        height: 650px;
    }

    .imgup {
        height: 650px;
    }

    .luxury-title {
        font-size: 3.5rem;
        /* Reduce large heading size */
        letter-spacing: 3px;
    }

    .luxury-subtitle {
        font-size: 1.2rem;
        /* Reduce subtitle size */
        letter-spacing: 1px;
    }

    .books {
        height: 200px;
    }

    /* --- Input/Search Layout (Keep in row, but add constraint) --- */
    .input-container {
        /* Keep as row, but allow inputs to shrink a bit more */
        gap: 15px;
        margin-top: 50px !important;
        flex-wrap: wrap;
        /* Allow wrapping if space is extremely tight */
        justify-content: center;
    }

    .input-container input {
        width: 280px;
        /* Slightly reduce input size */
    }

    /* --- Car Grid: Change from 3 to 2 columns --- */
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .car-listings-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* --- Footer Adjustments (Top Info Bar) --- */
    .fit {
        height: auto;
    }

    .footer-container {
        /* Allow items to wrap and take up more space */
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-item {
        /* Allow items to take up half width, stacking in two rows */
        flex: 0 0 calc(50% - 20px);
        min-width: 200px;
        padding-top: 0 !important;
    }

    .item-icon {
        margin-top: 0 !important;
    }

    /* --- Footer Adjustments (Bottom Columns) --- */
    .content-wrapper {
        flex-direction: column;
        /* Stack columns */
        align-items: center;
        gap: 0;
    }

    .about-us-column {
        padding-right: 15px;
        padding-bottom: 15px;
        width: 90%;
        border-right: none;
        /* Remove vertical border when stacked */
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        /* Add horizontal border for separation */
    }

    .info-columns {
        width: 90%;
        padding-top: 15px;
    }

    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .sub-heading {
        text-align: center;
        font-size: 1.2rem;
    }

    /* --- Sidebar Width Tweak --- */
    .cart-sidebar {
        width: min(90%, 350px);
    }

    /* --- Marquee --- */
    .marquee-text {
        font-size: 1rem;
    }
}






@media (max-width: 567px) {
    body {
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    /* --- Navbar Alignment Fix --- */
    .navbar {
        height: 65px;
        border-radius: 0px 0px 30px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    /* 💡 AGGRESSIVE FIX: Ensure the logo and title container is set up correctly */
    .navbar-brand {
        display: flex;
        align-items: center;
        /* Center children vertically */
        gap: 10px;
        margin-right: auto;
        margin-left: 5px;

    }

    .vsslogo {
        width: 65px;
        height: 65px;
        /* Reset any conflicting margins from the large screen size */
        margin-top: 0 !important;
        position: static !important;
        top: auto !important;
    }

    .site-title {
        font-size: 25px;
    }

    /* --- Hero Section & Inputs --- */
    .flee {
        height: 500px;
    }

    .imgup {
        height: 500px;
    }

    .luxury-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .luxury-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .books {
        height: 400px;
    }

    .input-container {
        flex-direction: column !important;
        gap: 15px;
        margin-top: 40px !important;
    }

    .input-container input {
        width: 90%;
        max-width: 300px;
    }

    .below {
        margin-top: 30px;
        font-size: 14px;
    }

    /* --- Car Grid: Single Column --- */
    .car-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .car-listings-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* --- Footer --- */
    footer {
        height: auto;
    }

    .fit {
        height: 250px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
        gap: 10px;
        height: 100%;
    }

    .footer-item {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .item-icon {
        display: none;
    }

    .item-title,
    .item-text {
        text-align: center;
    }

    .content-wrapper {
        flex-direction: column;
        width: 90%;
        gap: 0;
    }

    .about-us-column {
        padding: 10px 0;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        text-align: center;
    }

    .info-columns {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .info-columns ul {
        padding-left: 0;
    }

    .foot4 {
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
    }

    .foot5 {
        width: 90%;
        margin-left: 0;
        text-align: center;
        font-size: 0.8rem;
    }

    .privacy {
        width: 90%;
        float: none;
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 0.8rem;
    }

    .cookie {
        display: block;
        width: 100%;
        text-align: center;
    }

    .floating-cart-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px;
    }

    .floating-cart-btn i {
        font-size: 1.5rem;
    }

    .cart-sidebar {
        width: 100%;
        /* Full screen width on small phones */
    }

    .marquee-container {
        height: 40px;
        padding: 5px 0;
    }

    .marquee-text {
        font-size: 14px;
    }
}


@media (max-width: 400px) {

    body {
        /* Ensure mobile is black as per general reset, but confirm box-sizing is correct */
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    /* ... other styles for body, navbar, navbar-brand ... */
    .navbar {
        height: 65px;
        border-radius: 0px 0px 30px 30px;
        border-bottom: 3px solid var(--color-rich-gold);
        /* Add flex to the navbar itself if not already a flex container */
        display: flex;
        align-items: center;
    }

    .navbar-brand {
        /* Keep this: It correctly aligns the logo and title vertically */
        align-items: center;
        display: flex;
    }

    /* 3. Adjust the site-title - KEEP AS IS */
    .site-title {
        font-size: 20px;
        /* position: static !important; */
        top: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0px !important;
    }

    /* --- THE FIX FOR THE LOGO --- */
    .vsslogo {

        width: 65px;
        height: 65px;
        border-radius: 100%;

        /* 💡 NEW AGGRESSIVE LIFT */
        /* This pushes the logo up and pulls the surrounding content with it */
        margin-top: -5px !important;

        /* Reset any conflicting position properties */
        position: static;
        top: auto;
        bottom: auto;
    }

    /* ----------------------------- */

    .togg {
        position: relative;
        bottom: 10px;
        width: 10px !important;
        height: 80px !important;
        right: 25px !important;
        top: 0.5px;
        background-color: transparent;

        font-size: 15px !important;
    }




    footer .footer-container {
        /* Force vertical stacking */
        display: flex !important;
        flex-direction: column !important;
        /* Space between items */
        gap: 15px; 
        /* Padding around the container */
        padding: 10px 15px;
        /* background-color: pink !important; (Removed debugging color) */
    }

    /* Each individual contact/info item (location, call, timing) */
    footer .footer-item {
        display: flex;
        align-items: center;
        /* Space between icon and content */
        gap: 10px; 
        /* Align items to the left */
        justify-content: flex-start;
        /* Reset any conflicting margins for better left alignment */
        margin-left: 0; 
        /* background-color: blue !important; (Removed debugging color) */
    }

    /* Icon adjustments */
    footer .footer-item .item-icon {
        width: 25px;
        height: 25px;
        /* If you want the icon visible, change this: */
        display: block; 
        /* Reset inline style override for the location icon */
        /* If you use style="width: 20px;" in HTML, CSS won't override it without !important. */
    }

    /* Content wrapper (Title and Text) */
    footer .footer-item .item-content {
        display: flex;
        flex-direction: column;
        /* Align content to the left */
        text-align: left; 
    }

    /* Item Title (e.g., Our Location) */
    footer .footer-item .item-title {
        font-size: 14px;
        font-weight: bold;
    }

    /* Item Text (e.g., No 9 Boardman...) */
    footer .footer-item .item-text {
        font-size: 12px;
        /* Ensure long text wraps */
        word-break: break-word;
    }

    .fit {
        /* Adjust height to fit the stacked content */
        height: auto; 
        min-height: 250px; /* Optional minimum height */
    }
    
    /* ... rest of the styles for foot4, foot5, privacy ... */

    /* Top footer columns (if used elsewhere in the HTML) */
    footer .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    footer .column {
        width: 100%;
        text-align: left;
    }

    /* Ensure icons in the 'location' footer item are visible */
    /* Since you have an inline style on the location image, you may need to override it */
    .footer-item img.item-icon {
        width: 25px !important; 
        height: 25px !important;
        display: block !important;
    }
}

